home *** CD-ROM | disk | FTP | other *** search
- /* Intro.REXX
- Load the intro file and go to
- the node intro...(hm!)
- Written by Mark 'Force' Papadakis gsa50@cs.teiher.gr */
-
- Say "AREXX script for Assist; Loads my intro.help file and view ALL the nodes.."
- Say "Quite simple, really! AREXX-Power2ThePeople!!"
-
- OPTIONS RESULTS
- /* If Assist is not ready yet, just load it! */
- if ~Show('P','ASSIST.1') then do
- Say "Loading Assist.."
- Address command "run > nil: AUX_PRG:Assist"
- Say "Assist just loaded!"
- Say "Please, wait until the port is ready!"
- Address command "WaitForPort ASSIST.1"
- Say "AREXX port installed!"
- Say "=- Select {CANCEL} from filerequester to continue! -="
- end
- ADDRESS 'ASSIST.1'
- Say "Loading intro file.."
- /* If Assist was just loaded, you will have to select cancel
- in the filerequester to continue */
- Load 'AUX_PRG:Intro.help' /* Load the file */
- GoTo 'Main' /* Jump to the node MAIN */
- /*See all nodes! */
- ReDisplay /* Just to ensure the display is ok */
- DO i = 1 to 27 /* WOW! */
- NEXT /* Take a look at the next node */
- END I
- /* Hey, i have to introduce myself, dont you think guys? :-) */
- About
- Say "That was it folks!"
- Exit
-
-
-